home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / pc / Open Me for REALbasic 3 / REALbasic 3.2 / Example Projects / Techniques / Char Set & String Stuff / CharSet source code / Includes / winheader.h < prev   
Encoding:
Text File  |  2000-06-16  |  766 b   |  28 lines

  1. //    WinHeader.h
  2. //
  3. //    Copyright (©) 2000 REAL Software, Inc.
  4. //
  5. //    This file declares macros and functions needed for Win32 compilation
  6. //    of plugins using the REALbasic Plugin SDK.  This file should be
  7. //    set as the prefix file for your Windows (x86) target.  In addition,
  8. //    you'll need to add the "Win32-x86 Support" folder to the system
  9. //    access paths.
  10.  
  11. #ifndef WINHEADER_H
  12. #define WINHEADER_H
  13.  
  14. #include <Win32Headers.mch>
  15. #define nil 0
  16.  
  17. #include <QTML.h>
  18. #include <Movies.h>
  19.  
  20. // We previously provided our own definition of PtInRect.  This is now
  21. // available in QTML, but it's named MacPtInRect.  For the sake of
  22. // backwards compatibility, we define it thusly:
  23. #define PtInRect MacPtInRect
  24. // But be careful, as this hides a standard Win32 function.
  25.  
  26. #endif
  27.  
  28.